home *** CD-ROM | disk | FTP | other *** search
- ;
- ; This Script can be customized easily for RBBS Auto Logons
- ;
- ; Replace FIRSTNAME with your real first name.
- ; Replace LASTNAME with your real last name.
- ; Replace PASSWORD with you normal password.
- ;
-
- Note Logging onto an RBBS
-
- Timeout 30 Halt ; Waitfor limit to 30, error goto Halt
-
- Waitfor 'More (Y)' ; Wait for the string
- Send 'N{' ; Send N { = <CR>
-
- Waitfor 'Name'
- Send 'FIRSTNAME;LASTNAME;PASSWORD{'
-
- Timeout 30 Continue ; If the Board remembers us, skip
- Waitfor 'More (Y)' ; the next Waitfor...
- Send 'N{' ; Goto Continue
-
- Continue:
-
- Note You are now logged on!
- Exit
-
- Halt:
-
- Note Unuccessful Attempt.
- Note Script Halted
- Return